home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000133_fdc@columbia.edu_Sat Jun 8 10:40:13 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  58 lines

  1. Article: 13432 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: site Not a command ?
  6. Date: 8 Jun 2002 10:40:06 -0400
  7. Organization: Columbia University
  8. Lines: 41
  9. Message-ID: <adt506$brm$1@watsol.cc.columbia.edu>
  10. References: <88bM8.3489$Aa4.99474@news0.telusplanet.net> <adrfgv$2of$1@newsmaster.cc.columbia.edu>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1023547207 28043 128.59.39.139 (8 Jun 2002 14:40:07 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 8 Jun 2002 14:40:07 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13432
  16.  
  17. In article <adrfgv$2of$1@newsmaster.cc.columbia.edu>,
  18. Jeffrey Altman <jaltman@watsun.cc.columbia.edu> wrote:
  19. > In article <88bM8.3489$Aa4.99474@news0.telusplanet.net>,
  20. > Emanuele Buttice <ebuttice@rbbx.com> wrote:
  21. > :
  22. > : Kermit does not seem to understand the "site" command
  23. > : and returns the following error :
  24. > : 
  25. > : C-Kermit>site
  26. > : ? Not a command or macro name: "site"
  27. >
  28. As Jeff said, use "ftp site".
  29.  
  30. > : I also get the following error when connecting to the ftp server :
  31. > : 
  32. > : 331 Enter Password
  33. > : ---> PASS XXX
  34. > : 230 Ready.
  35. > : ---> REST 0
  36. > : 502 Command not supported.
  37. > : ---> SYST
  38. > : 502 Command not supported.
  39. > : 
  40. > : I am using ckermit (8.0 latest) as an ftp client using SSL on Redhat 7.2
  41. >
  42. The server does not understand the REST and SYST commands.  To avoid this,
  43. use:
  44.  
  45.   ftp [ open ] <hostname> /noinit
  46.  
  47. > : When performing a get :
  48. > : ----> MDTM "filename blah bla"
  49. > : 500 Command not recognized.
  50. >
  51. I think you should only see this if you have SET FTP VERBOSE ON.  In any
  52. case, you can avoid the error message with SET FTP DATES OFF.  Never let
  53. it be said that Kermit doesn't have a setting for everything :-)
  54.  
  55. What is the FTP server?  Evidently a fairly primitive one.
  56.  
  57. - Frank
  58.